drivers: partition: correct compilation error in VERBOSE mode
authorYann Gautier <[email protected]>
Thu, 4 Oct 2018 17:04:17 +0000 (19:04 +0200)
committerYann Gautier <[email protected]>
Thu, 11 Oct 2018 12:39:49 +0000 (14:39 +0200)
Signed-off-by: Yann Gautier <[email protected]>
drivers/partition/partition.c

index d6fb4b8e4e7d6f46008d1277f5a5fd16a56f397b..6085b8651ba2ae4d5584ee8da2b8376bed358304 100644 (file)
@@ -30,7 +30,7 @@ static void dump_entries(int num)
                        name[len + j] = ' ';
                }
                name[EFI_NAMELEN - 1] = '\0';
-               VERBOSE("%d: %s %lx-%lx\n", i + 1, name, list.list[i].start,
+               VERBOSE("%d: %s %llx-%llx\n", i + 1, name, list.list[i].start,
                        list.list[i].start + list.list[i].length - 4);
        }
 }